home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-392.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  115 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(13653);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2004-0594", "CAN-2004-0595");
  13.  
  14.  name["english"] = "RHSA-2004-392: php";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated php packages that fix various security issues are now available.
  21.  
  22.   PHP is an HTML-embedded scripting language commonly used with the Apache
  23.   HTTP server.
  24.  
  25.   Stefan Esser discovered a flaw when memory_limit is enabled in versions of
  26.   PHP 4 before 4.3.8. If a remote attacker could force the PHP interpreter to
  27.   allocate more memory than the memory_limit setting before script execution
  28.   begins, then the attacker may be able to supply the contents of a PHP hash
  29.   table remotely. This hash table could then be used to execute arbitrary
  30.   code as the \'apache\' user. The Common Vulnerabilities and Exposures project
  31.   (cve.mitre.org) has assigned the name CAN-2004-0594 to this issue.
  32.  
  33.   This issue has a higher risk when PHP is running on an instance of Apache
  34.   which is vulnerable to CAN-2004-0493. For Red Hat Enterprise Linux 3, this
  35.   Apache memory exhaustion issue was fixed by a previous update,
  36.   RHSA-2004:342. It may also be possible to exploit this issue if using a
  37.   non-default PHP configuration with the "register_defaults" setting is
  38.   changed to "On". Red Hat does not believe that this flaw is exploitable in
  39.   the default configuration of Red Hat Enterprise Linux 3.
  40.  
  41.   Stefan Esser discovered a flaw in the strip_tags function in versions of
  42.   PHP before 4.3.8. The strip_tags function is commonly used by PHP scripts
  43.   to prevent Cross-Site-Scripting attacks by removing HTML tags from
  44.   user-supplied form data. By embedding NUL bytes into form data, HTML tags
  45.   can in some cases be passed intact through the strip_tags function, which
  46.   may allow a Cross-Site-Scripting attack. The Common Vulnerabilities and
  47.   Exposures project (cve.mitre.org) has assigned the name CAN-2004-0595 to
  48.   this issue.
  49.  
  50.   All users of PHP are advised to upgrade to these updated packages, which
  51.   contain backported patches that address these issues.
  52.  
  53.  
  54.  
  55.  
  56. Solution : http://rhn.redhat.com/errata/RHSA-2004-392.html
  57. Risk factor : High';
  58.  
  59.  script_description(english:desc["english"]);
  60.  
  61.  summary["english"] = "Check for the version of the php packages";
  62.  script_summary(english:summary["english"]);
  63.  
  64.  script_category(ACT_GATHER_INFO);
  65.  
  66.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  67.  family["english"] = "Red Hat Local Security Checks";
  68.  script_family(english:family["english"]);
  69.  
  70.  script_dependencies("ssh_get_info.nasl");
  71.  
  72.  script_require_keys("Host/RedHat/rpm-list");
  73.  exit(0);
  74. }
  75.  
  76. include("rpm.inc");
  77. if ( rpm_check( reference:"php-4.3.2-11.1.ent", release:"RHEL3") )
  78. {
  79.  security_hole(0);
  80.  exit(0);
  81. }
  82. if ( rpm_check( reference:"php-imap-4.3.2-11.1.ent", release:"RHEL3") )
  83. {
  84.  security_hole(0);
  85.  exit(0);
  86. }
  87. if ( rpm_check( reference:"php-ldap-4.3.2-11.1.ent", release:"RHEL3") )
  88. {
  89.  security_hole(0);
  90.  exit(0);
  91. }
  92. if ( rpm_check( reference:"php-mysql-4.3.2-11.1.ent", release:"RHEL3") )
  93. {
  94.  security_hole(0);
  95.  exit(0);
  96. }
  97. if ( rpm_check( reference:"php-odbc-4.3.2-11.1.ent", release:"RHEL3") )
  98. {
  99.  security_hole(0);
  100.  exit(0);
  101. }
  102. if ( rpm_check( reference:"php-pgsql-4.3.2-11.1.ent", release:"RHEL3") )
  103. {
  104.  security_hole(0);
  105.  exit(0);
  106. }
  107.  
  108. if ( rpm_exists(rpm:"php-", release:"RHEL3") )
  109. {
  110.  set_kb_item(name:"CAN-2004-0594", value:TRUE);
  111.  set_kb_item(name:"CAN-2004-0595", value:TRUE);
  112. }
  113.  
  114. set_kb_item(name:"RHSA-2004-392", value:TRUE);
  115.